home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Format CD 46
/
Amiga Format CD46 (1999-10-20)(Future Publishing)(GB)[!][issue 1999-12].iso
/
-serious-
/
programming
/
other
/
tandem
/
teaching
/
68.asm
< prev
next >
Wrap
Assembly Source File
|
1999-09-06
|
640b
|
31 lines
* 68.asm TLprefs version 0.01 8.6.99
include 'Front.i'
; TLprefs puts up a requester with lots of built-in help &c to allow the
; user to set prefernces for the tandem.lubrary GUI. You can choose whether
; to also allow the user to change the colour palette. Note that Multiline
; has "GUI Preferences" in its Project menu, which calls TLprefs.
strings: dc.b 0
dc.b 'Error: out of memory',0 ;1
ds.w 0
* demonstrate TLprefs
Program:
TLwindow #-1
beq Pr_bad
TLprefs ;or "TLprefs color" to allow palette select
bra.s Pr_quit
Pr_bad: ;here if out of mem
TLbad #1
Pr_quit:
rts